Hi Andrew,
Can you explain why you need to do this?
Its currently hard coded in KMotionCNCDlg.cpp as:
s.Format(" X:%10.4f ",x);
KillMinusZero(s);
Disp0->SetText(s);
s.Format(" Y:%10.4f ",y);
KillMinusZero(s);
Disp1->SetText(s);
s.Format(" Z:%10.4f ",z);
KillMinusZero(s);
Disp2->SetText(s);
s.Format(" A:%10.4f ",a);
KillMinusZero(s);
Disp3->SetText(s);
s.Format(" B:%10.4f ",b);
KillMinusZero(s);
Disp4->SetText(s);
s.Format(" C:%10.4f ",c);
KillMinusZero(s);
Disp5->SetText(s);
Maybe fixed based on Units or Angular might be simpler.
Regards
TK
Regards
TK
On 11/10/2017 4:13 PM,
kn6za@... [DynoMotion] wrote:
Anyone know how to change the DRO readout in one axis from 4 right of decimal to 3 places?
The only one I need to change is my rotary axis, my linear axis's need to stay at 4 places.
Thanks,
Andrew